
*{
    font-family: "Playfair Display";
}

.Merriweather{
    font-family: "Merriweather" !important;
    font-optical-sizing: auto;
     font-style: normal;
}



.navbar{
    z-index: 99999999999999 !important;
}


.playfair-100{
    font-weight: 100;
}

.playfair-200{
    font-weight: 200;
}

.playfair-300{
    font-weight: 300;
}

.playfair-400{
    font-weight: 400;
}

.playfair-500{
    font-weight: 500;
}

.product-item{
    height:400px;
}

.team-img{
    min-height: 250px;
    height: 250px;
    object-fit: cover;
}


.sm-color-primary{
color:#6cb1b0 !important;
}


.sm-color-secondary{
color:#524117 !important;
}

.sm-color-grey{
color:#5f5f5f !important;
}

.opacity-10{
    opacity: .1;
}

.sm-background-primary{
    background-color:#6cb1b0 !important;
}

.cursor-pointer{
    cursor: pointer;
}

.sm-background-secondary{
    background-color:#52411734 !important;
}

.sm-background-third{
    background-color:#524117 !important;
}

.hover-scale{
    transition: .5s !important;
}

.border-primary{
    border:1px solid #6cb1b0 !important;
}

.sm-border-primary{
    border:1px solid #6cb1b0 !important;
}

.border-red{
    border:1px solid red !important;
}

.hover-scale:hover{
    transform: scale(1.05) !important;
}

.img-full{
    width: 100%;
    object-fit: contain;
}


h2{
    font-size: 6rem !important;
    line-height:5.5rem !important;
}

h3{
    font-size: 2rem !important;
    line-height:2rem !important;
}


.icon-size{
    width:30px;
    height:30px;
    object-fit: contain;
    margin: 0 5px;
}

.product-menu{
    left  : 0 !important;
    width: 60vw !important;
}


@media (max-width: 768px) {
  .flex-md-row {
    flex-direction: column !important;
  }

  .shm-row{
    display: block;
    height:1200px;
    flex-direction: column !important;
  }

  .img-full{
    height: 250px !important;
  }

  .product-item{
    width: 100% !important;
  }

  .filter-section{
    display: none !important;
    width: 100vw !important;
    position: fixed      !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 99999999999999 !important;
    background-color: #fff !important;
    padding: 20px !important;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 99999999999999 !important;
  }

  .product-section{
    width: 100% !important;
    margin-top: 20px !important;
  }
  
}

/*-------------- NOTIFICATION ---------------*/

.notification{
  width: 100vw;
  height: 50px;
  position: fixed;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 999999999999999999;
  transform: translateY(100px);
}

.notification-show{
  animation: notify-in .5s;
  transform: translateY(0);
  opacity: 1;
}

@keyframes notify-in {
  0%{
    transform: translateY(100px);
    opacity: 0;
  }
  100%{
    transform: translateY(0);
    opacity: 1;
  }
  
}

.notification-inner{
  max-width: 600px;
  height: 100%;
  padding: 10px;
  border-radius: 10px;
  background-color: #6cb1b0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}

.notification-inner img{
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.notification-inner .green{
  background-color: #6cb1b0 !important;
}
.notification-inner .red{
  background-color: #6cb1b0 !important;
}

.notification-inner .blue{
  background-color: #6cb1b0 !important;
}

.notification-inner .close-btn{
  cursor: pointer;
  transition: .5s;
  height: 25px;
  width: 25px;
}

.notification-inner .close-btn:hover{
  background-color: #52411734;
}



.notification-show .notification-inner img{
  animation: rotate-in .75s;
}

@keyframes rotate-in {
  0%{
    transform: rotate(45deg) scale(0);
    opacity: 0;
  }
  100%{
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

.notification-inner span{
  font-size: 12px;
  color: white;
  padding: 10px;
}

/*-------------- END NOTIFICATION ---------------*/

/*-------------- SHOP IMAGE ---------------*/

.product-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.img-full {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/*-------------- SHOP IMAGE END ---------------*/

.spinner-border {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  vertical-align: text-bottom;
  border: .15em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spinner-border .75s linear infinite;
}

@keyframes spinner-border {
  to { transform: rotate(360deg); }
}

.list-group-item.active,
.list-group-item-action.active {
  background-color: #6FB3B0 !important;
  border-color: #6FB3B0 !important;
  color: #fff !important;
}

.list-group-item-action:focus,
.list-group-item-action:hover {
  background-color: #6FB3B01A;
}

:root {
  --teal: #6FB3B0;
  --teal-hover: #5aa19e;
  --teal-100: #6FB3B01A;
}

.btn-outline-primary {
  color: var(--teal) !important;
  border-color: var(--teal) !important;
  background-color: transparent !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff !important;
  background-color: var(--teal) !important;
  border-color: var(--teal) !important;
}

.btn-primary {
  background-color: var(--teal) !important;
  border-color: var(--teal) !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--teal-hover) !important;
  border-color: var(--teal-hover) !important;
}

.btn-outline-secondary:hover {
  background-color: var(--teal-100) !important;
}

.form-control:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 .25rem rgba(111,179,176,.25) !important;
}
